home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / TIFF / Imakefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  1.1 KB  |  27 lines

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1997. */
  3.  
  4. #include "../../Glut.cf"
  5.  
  6. TARGETS = showtiff textiff writetiff depthdof scalebias tiffsift
  7.  
  8. SRCS = showtiff.c textiff.c writetiff.c depthdof.c scalebias.c tiffsift.c
  9.  
  10. AllTarget($(TARGETS))
  11.  
  12. TIFF_LIB = -ltiff
  13. TIFF_DEPLIB = 
  14. #
  15. # You may actually need the following definition of TIFF_LIB for
  16. # more recent TIFF library releases:
  17. #TIFF_LIB = -ltiff -ljpeg -lz
  18.  
  19. NormalProgramTarget(showtiff,showtiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  20. NormalProgramTarget(textiff,textiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  21. NormalProgramTarget(tiffsift,tiffsift.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  22. NormalProgramTarget(writetiff,writetiff.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  23. NormalProgramTarget(depthdof,depthdof.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  24. NormalProgramTarget(scalebias,scalebias.o,$(TIFF_DEPLIB) $(GLUT_DEPLIBS),$(TIFF_LIB) $(GLUT_LIBS),NullParameter)
  25.  
  26. DependTarget()
  27.